container/list.Element.prev (field)
23 uses
container/list (current package)
list.go#L21: next, prev *Element
list.go#L40: if p := e.prev; e.list != nil && p != &e.list.root {
list.go#L56: l.root.prev = &l.root
list.go#L81: return l.root.prev
list.go#L93: e.prev = at
list.go#L95: e.prev.next = e
list.go#L96: e.next.prev = e
list.go#L109: e.prev.next = e.next
list.go#L110: e.next.prev = e.prev
list.go#L112: e.prev = nil // avoid memory leaks
list.go#L122: e.prev.next = e.next
list.go#L123: e.next.prev = e.prev
list.go#L125: e.prev = at
list.go#L127: e.prev.next = e
list.go#L128: e.next.prev = e
list.go#L152: return l.insertValue(v, l.root.prev)
list.go#L163: return l.insertValue(v, mark.prev)
list.go#L192: if e.list != l || l.root.prev == e {
list.go#L196: l.move(e, l.root.prev)
list.go#L206: l.move(e, mark.prev)
list.go#L224: l.insertValue(e.Value, l.root.prev)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |